home *** CD-ROM | disk | FTP | other *** search
- // mfc_pgm.h : Declares the class interfaces for the application.
- // MFC_PGM is intended as a simple example of the use of
- // the Microsoft Foundation Class (MFC) library.
- //
-
- #define NROWS 20
-
- // CMainWindow
-
- class CMainWindow : public CFrameWnd
- {
- public:
- CMainWindow();
- void PgmExit(void);
- void PgmSend(void);
- void ShowError(int);
- void DisplayChar(int);
- void DisplayLine(CString);
- protected:
- //CWnd * MainWndPtr;
- int TheRow;
- CString Buffer[NROWS];
- afx_msg void OnPaint();
- //afx_msg void OnAbout();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- class CTheApp : public CWinApp
- {
- public:
- BOOL InitInstance();
- };
-
-